home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / move.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  5.5 KB  |  133 lines

  1. // check which version should be loaded..
  2. if( $ME::Loaded == "true" )
  3. {
  4.    function ME::Move( %speed, %rot )
  5.    {
  6.       if( %speed == "" ) 
  7.          %speed = 2;
  8.       if( %rot == "" )
  9.          %rot = 0.2;
  10.       $ME::CameraMoveSpeed = %speed;
  11.       $ME::CameraRotateSpeed = %rot;
  12.    }
  13.  
  14.    newActionMap( "editor.sae" );
  15.    bindAction( keyboard, make, a, TO, IDACTION_MOVELEFT, 1 );
  16.    bindAction( keyboard, break, a, TO, IDACTION_MOVELEFT, 0 );
  17.    bindAction( keyboard, make, d, TO, IDACTION_MOVERIGHT, 1 );
  18.    bindAction( keyboard, break, d, TO, IDACTION_MOVERIGHT, 0 );
  19.    bindAction( keyboard, make, s, TO, IDACTION_MOVEBACK, 1 );
  20.    bindAction( keyboard, break, s, TO, IDACTION_MOVEBACK, 0 );
  21.    bindAction( keyboard, make, w, TO, IDACTION_MOVEFORWARD, 1 );
  22.    bindAction( keyboard, break, w, TO, IDACTION_MOVEFORWARD, 0 );
  23.    bindAction( keyboard, make, e, TO, IDACTION_MOVEUP, 1 );
  24.    bindAction( keyboard, break, e, TO, IDACTION_MOVEUP, 0 );
  25.    bindAction( keyboard, make, c, TO, IDACTION_MOVEDOWN, 1 );
  26.    bindAction( keyboard, break, c, TO, IDACTION_MOVEDOWN, 0 );
  27.  
  28.    bindCommand( keyboard, make, f1, to, "MEHide();");
  29.    bindCommand( keyboard, make, f2, to, "MEShowInspector();");
  30.    bindCommand( keyboard, make, f3, to, "MEShowCreator();");
  31.    bindCommand( keyboard, make, f4, to, "MEShowTed();");
  32.    bindCommand( keyboard, make, f5, to, "MEGameMode();");
  33.    bindCommand( keyboard, make, f9, to, "METoggleHelp();" );
  34.    bindCommand( keyboard, make, o, to, "METoggleOptions();");
  35.  
  36.    //
  37.    bindCommand( keyboard, make, control, delete, to, "MEDeleteSelection();" );
  38.    bindCommand( keyboard, make, control, c, to, "MECopySelection();" );
  39.    bindCommand( keyboard, make, control, x, to, "MECutSelection();" );
  40.    bindCommand( keyboard, make, control, v, to, "MEPasteSelection();" );
  41.    bindCommand( keyboard, make, control, d, to, "MEDropSelection();");
  42.  
  43.    bindCommand( keyboard, make, control, n, to, "ME::CreateGroup();" );
  44.  
  45.    //
  46.    bindCommand( keyboard, make, control, z, to, "MEUndo();" );
  47.    bindCommand( keyboard, make, control, s, to, "MESave();" );
  48.  
  49.    // 
  50.    bindAction( keyboard, make, control, TO, IDACTION_ME_MOD1, 1 );
  51.    bindAction( keyboard, break, control, TO, IDACTION_ME_MOD1, 0 );
  52.    bindAction( keyboard, make, shift, TO, IDACTION_ME_MOD2, 1 );
  53.    bindAction( keyboard, break, shift, TO, IDACTION_ME_MOD2, 0 );
  54.    bindAction( keyboard, make, alt, TO, IDACTION_ME_MOD3, 1 );
  55.    bindAction( keyboard, break, alt, TO, IDACTION_ME_MOD3, 0 );
  56.  
  57.    //
  58.    bindAction(mouse, xaxis, TO, IDACTION_YAW, scale, 0.002, flip);
  59.    bindAction(mouse, yaxis, TO, IDACTION_PITCH, scale, 0.002, flip);
  60.  
  61.    // bookmark binds
  62.    for( %i = 0; %i < 10; %i++ )
  63.    {
  64.       bindCommand( keyboard, make, control, %i, to, "ME::PlaceBookmark(" @ %i @ ");");
  65.       bindCommand( keyboard, make, alt, %i, to, "ME::GotoBookmark(" @ %i @ ");");
  66.    }
  67.  
  68.    // movement binds
  69.    bindCommand( keyboard, make, 0, to, "ME::Move(1024);");
  70.    for( %i = 1; %i < 10; %i++ )
  71.       bindCommand( keyboard, make, %i, to, "ME::Move(" @ ( 1 << %i ) @ ");" );
  72.  
  73.    // toggle key for plane movement
  74.    bindCommand( keyboard, make, capslock, to, "METogglePlaneMovement();" );
  75. }
  76. else
  77. {
  78.    // Set up a default movement action map file
  79.    function move( %speed, %posRot )
  80.    {
  81.       if( %speed == "" ) {
  82.          $MoveSpeed = 2;
  83.       }
  84.       else {
  85.          $MoveSpeed = %speed;
  86.       }
  87.  
  88.       if( %posRot == "" ) {
  89.          $PosRotation = 0.2;
  90.       }
  91.       else {
  92.          $PosRotation = %posRot;
  93.       }
  94.  
  95.       %NegRotation = strcat( "-", $PosRotation );
  96.  
  97.       newActionMap("move.sae");
  98.       bindAction( keyboard, make, a, TO, IDACTION_MOVELEFT, $MoveSpeed );
  99.       bindAction( keyboard, break, a, TO, IDACTION_MOVELEFT, 0 );
  100.       bindAction( keyboard, make, d, TO, IDACTION_MOVERIGHT, $MoveSpeed );
  101.       bindAction( keyboard, break, d, TO, IDACTION_MOVERIGHT, 0 );
  102.       bindAction( keyboard, make, s, TO, IDACTION_MOVEBACK, $MoveSpeed );
  103.       bindAction( keyboard, break, s, TO, IDACTION_MOVEBACK, 0 );
  104.       bindAction( keyboard, make, w, TO, IDACTION_MOVEFORWARD, $MoveSpeed );
  105.       bindAction( keyboard, break, w, TO, IDACTION_MOVEFORWARD, 0 );
  106.       bindAction( keyboard, make, e, TO, IDACTION_MOVEUP, $MoveSpeed );
  107.       bindAction( keyboard, break, e, TO, IDACTION_MOVEUP, 0 );
  108.       bindAction( keyboard, make, c, TO, IDACTION_MOVEDOWN, $MoveSpeed );
  109.       bindAction( keyboard, break, c, TO, IDACTION_MOVEDOWN, 0 );
  110.  
  111.       //
  112.       bindAction( keyboard, make, left, TO, IDACTION_YAW, $PosRotation );
  113.       bindAction( keyboard, break, left, TO, IDACTION_YAW, 0 );
  114.       bindAction( keyboard, make, right, TO, IDACTION_YAW, %NegRotation );
  115.       bindAction( keyboard, break, right, TO, IDACTION_YAW, 0 );
  116.       bindAction( keyboard, make, up, TO, IDACTION_PITCH, $PosRotation );
  117.       bindAction( keyboard, break, up, TO, IDACTION_PITCH, 0 );
  118.       bindAction( keyboard, make, down, TO, IDACTION_PITCH, %NegRotation );
  119.       bindAction( keyboard, break, down, TO, IDACTION_PITCH, 0 );
  120.  
  121.       //
  122.       bindCommand( keyboard, make, 1, to, "move(1);");
  123.       bindCommand( keyboard, make, 2, to, "move(3);");
  124.       bindCommand( keyboard, make, 3, to, "move(6);");
  125.       bindCommand( keyboard, make, 4, to, "move(12);");
  126.       bindCommand( keyboard, make, 5, to, "move(24);");
  127.       bindCommand( keyboard, make, 6, to, "move(50);");
  128.       bindCommand( keyboard, make, 7, to, "move(100);");
  129.       bindCommand( keyboard, make, 8, to, "move(200);");
  130.       bindCommand( keyboard, make, 9, to, "move(400);");
  131.       bindCommand( keyboard, make, 0, to, "move(5);");
  132.    }
  133. }